home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / util / cli / AKCC.lha / Install_AKCC.script < prev    next >
Text File  |  2002-06-27  |  804b  |  36 lines

  1. ; $VER: Install_AKCC.script V4.1 (6.9.96)
  2. ; © 1993-96 by Andreas R. Kleinert.
  3. ; This is the Installer Script for AKCC
  4.  
  5. (copylib
  6.   (prompt "Installing akccplus.library ...")
  7.   (help @copylib-help)
  8.   (source "libs/akccplus.library")
  9.   (dest "LIBS:")
  10.   (confirm)
  11. )
  12.  
  13. (copyfiles
  14.   (prompt "Installing AKCC ...")
  15.   (help @copyfiles-help)
  16.   (source "")
  17.   (set akcomdir
  18.               (askdir
  19.                      (prompt "Select path to install AKCC commands")
  20.                      (help @askdir-help)
  21.                      (newpath)
  22.                      (default "SYS:AKCC")
  23.               )
  24.   )
  25.   (dest akcomdir)
  26.   (all)
  27.   (confirm)
  28. )
  29.  
  30. (startup "AKCC"
  31.   (prompt "Now modifying your S:User-Startup to use AKCC ...")
  32.   (help @startup-help)
  33.   (command "Assign AKCC: "akcomdir"\n")
  34.   (command "Path AKCC:c ADD\n")
  35. )
  36.